home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / aztecnos.arc / ALLOC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-21  |  235 b   |  18 lines

  1. #ifndef    NULLHDR
  2.  
  3. union header {
  4.     struct {
  5.         union header *ptr;
  6.         unsigned size;
  7.     } s;
  8.     long l;
  9. };
  10.  
  11. typedef union header HEADER;
  12. #define    NULLHDR    (HEADER *)NULL
  13.  
  14. #define    ABLKSIZE    (sizeof (HEADER))
  15.  
  16. #endif    /* NULLHDR */
  17.  
  18.